home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Text / Digest-Browser-1.6 Folder / Views / CBrowserScrollPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-31  |  946 b   |  41 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CBrowserScrollPane.h
  3.  
  4.         
  5.  ******************************************************************************/
  6.  
  7. #define _H_CBrowserScrollPane
  8.  
  9. #include <CScrollPane.h>                        /* Interface for its superclass        */
  10.  
  11.     // Forward declarations
  12.     
  13. class CPanorama;
  14. class CScrollBar;
  15. class CBrowserSizeBox;
  16.  
  17. class CBrowserScrollPane : public CScrollPane {            /* CLASS DECLARATION                */
  18.  
  19. public:
  20.                                 /** Instance Variables **/
  21.     CBrowserSizeBox    *itsBrowserSizeBox;            /* Grow box                            */
  22.                                 /** Instance Methods **/
  23.                                     /** Construct/Desctruction **/
  24.     void        IBrowserScrollPane(
  25.         CView            *anEnclosure,
  26.         CBureaucrat        *aSupervisor,
  27.         short            aWidth,
  28.         short            aHeight,
  29.         short            aHEncl,
  30.         short            aVEncl,
  31.         SizingOption    aHSizing,
  32.         SizingOption    aVSizing,
  33.         Boolean            hasHoriz,
  34.         Boolean            hasVert,
  35.         Boolean            hasSizeBox,
  36.         Boolean            hasSICN);
  37.         
  38.     void    Calibrate();
  39.     
  40. };
  41.